home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / muds / pennmush.000 / pennmush-1.50-p8-linux.tar / pennmush / help.h < prev    next >
Text File  |  1991-10-04  |  238b  |  12 lines

  1. /* help.h */
  2.  
  3. #define  LINE_SIZE        90
  4.  
  5. #define  TOPIC_NAME_LEN        30
  6.  
  7. typedef struct {
  8.   long pos;            /* index into help file */
  9.   int len;            /* length of help entry */
  10.   char topic[TOPIC_NAME_LEN + 1];    /* topic of help entry */
  11. } help_indx;
  12.